Test Failed
Push — main ( a6b018...b2d6b6 )
by Ehsan
02:40
created

ReTweetableAbstract.isReTweetable   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
ccs 0
cts 0
cp 0
rs 10
c 0
b 0
f 0
cc 1
crap 2
1
export interface ReTweetableInterface {
2
    retweetError: string;
3
4
    isReTweetable: () => boolean;
5
}
6
7 3
export abstract class ReTweetableAbstract implements ReTweetableInterface {
8 160
    retweetError = '';
9
10
    abstract isReTweetable(): boolean;
11
}
12